home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / vsc92nov.zip / Boolean.h < prev    next >
C/C++ Source or Header  |  1992-11-02  |  467b  |  25 lines

  1. /*
  2.  * Boolean.h -- Declarations for Scheme Booleans (and ())
  3.  *
  4.  * (C) m.b (Matthias Blume), Mar 1992, HUB/Ger
  5.  *
  6.  * ident "@(#) Boolean.h (C) M.Blume, Humboldt-Uni Berlin, 1.2"
  7.  */
  8.  
  9. # ifndef BOOLEAN_H_
  10. # define BOOLEAN_H_
  11.  
  12. # include "storage.h"
  13.  
  14. typedef
  15. struct ScmBoolean {
  16.   object_head _;
  17. } ScmBoolean;
  18.  
  19. extern od_vector ScmBoolean_od_vector;
  20. # define ScmBoolean_description (ScmBoolean_od_vector[0])
  21.  
  22. extern ScmBoolean ScmTrue, ScmFalse, ScmNil, ScmEof;
  23.  
  24. # endif
  25.